GtkColorScale: fix an RTL issue
authorMatthias Clasen <mclasen@redhat.com>
Fri, 10 Feb 2012 00:05:20 +0000 (19:05 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Tue, 14 Feb 2012 21:37:04 +0000 (16:37 -0500)
When using a horizontal scale in RTL, we need to flip the
background image to go along with the flipped scale.

gtk/gtkcolorscale.c

index 455590938b104d4ea449291bc7192ead519b677f..7070281b8711065c19aa999f41c079b098189197 100644 (file)
@@ -192,6 +192,7 @@ scale_draw (GtkWidget *widget,
 {
   GtkColorScale *scale = GTK_COLOR_SCALE (widget);
   gint width, height;
+  cairo_pattern_t *pattern;
 
   width = gtk_widget_get_allocated_width (widget);
   height = gtk_widget_get_allocated_height (widget);
@@ -218,9 +219,21 @@ scale_draw (GtkWidget *widget,
     cairo_rectangle (cr, 1, 1, width - 2, height - 2);
 
   cairo_clip (cr);
-  cairo_set_source_surface (cr, scale->priv->surface, 0, 0);
+  pattern = cairo_pattern_create_for_surface (scale->priv->surface);
+  if (gtk_orientable_get_orientation (GTK_ORIENTABLE (widget)) == GTK_ORIENTATION_HORIZONTAL &&
+      gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL)
+    {
+      cairo_matrix_t matrix;
+
+      cairo_matrix_init_scale (&matrix, -1, 1);
+      cairo_matrix_translate (&matrix, -width, 0);
+      cairo_pattern_set_matrix (pattern, &matrix);
+    }
+  cairo_set_source (cr, pattern);
   cairo_paint (cr);
 
+  cairo_pattern_destroy (pattern);
+
   cairo_restore (cr);
 
   GTK_WIDGET_CLASS (gtk_color_scale_parent_class)->draw (widget, cr);